home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pstoryeditpref.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  719 b   |  38 lines

  1. /*
  2.  *--- PStoryEditPref.h ----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PStoryEditPref__
  10. #define __PStoryEditPref__
  11.  
  12.  
  13. #include "PMTypes.h"
  14.  
  15. class PGetStoryEditPref;
  16.  
  17. class PStoryEditPref
  18. {
  19.  
  20. public:
  21.  
  22.     PStoryEditPref
  23.       (    PMBool            bDisplayPara,
  24.         PMBool            bDisplayStyle,
  25.         short            dSize,
  26.         const char *    sFont );
  27.  
  28.     PStoryEditPref(const PGetStoryEditPref& sePref);
  29.     
  30. private:
  31.  
  32.     PStoryEditPref();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PStoryEditPref.h
  38.